02037e9ec8059ab8c751f5e7e49cd881b2fac6a0,plugins/github/src/org/jetbrains/plugins/github/GithubUtil.java,GithubUtil,getHttpClient,#String#String#,120

Before Change


                                                                                             proxySettings.getPlainProxyPassword()));
      }
    }
    client.getParams().setAuthenticationPreemptive(true);
    client.getState().setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(login, password));
    return client;
  }

After Change


                                                                                             proxySettings.getPlainProxyPassword()));
      }
    }
    if (login != null && password != null) {
      client.getParams().setAuthenticationPreemptive(true);
      client.getState().setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(login, password));
    }
    return client;